home *** CD-ROM | disk | FTP | other *** search
/ System Booster / System Booster.iso / Archives / ForCLI / CatchIt.lha / CatchIt.doc < prev   
Text File  |  1994-08-04  |  2KB  |  54 lines

  1. Short: Catch StdOut Output and give it to an application.
  2. Type:  util/shell
  3. Uploader: oesi@paradis.rhein.de (Andreas S. Oesterhelt)
  4.  
  5.  
  6. CatchIt is a quick'n'dirty Hack, that is similar to 'pipe' or
  7. 'APIPE:', with the one difference that it does not invoke the
  8. application whose stdout-output is to be captured.
  9.  
  10. Synopsis: CatchIt <command> <arguments, including * for the capture>
  11.  
  12. Some examples:
  13.  
  14. CatchIt Ed *   - catches the input fom the invoking process until
  15.                  Ctrl-\ (=EOF) and then runs Ed on the input.
  16.                  (If invoked from a shell window, you can enter the
  17.                  text manually.)
  18.  
  19. CatchIt copy * prt:  - same as above, copies input to the printer
  20.                 instead.
  21.  
  22. You get an error, if either
  23.  
  24. - your ram is full
  25. - T: is not available
  26. - less than 2 arguments are supplied
  27.  
  28. It developed from the spontaneous need to have a user "display" 
  29. on my system, that would display messages sent to him on the
  30. console for test purposes. So I wrote CatchIt and set up an
  31. alias in the UUlib:aliases File:
  32.  
  33. display:: "|CatchIt more *"
  34.  
  35. Now all incoming mail for user "display" is displayed by more
  36. upon arrival. This is particularly useful if you run AmiTCP and
  37. SMTPd, as people can send urgent messages Cc'ed to display.
  38.  
  39. (Note: after being displayed the mails are lost. If you want to
  40. save them, add a second recipient to the alias.)
  41.  
  42. You can easily set up pseudo-users for any purpose, say
  43.  
  44. binaries:: "|CatchIt uudecode *"
  45. playsound:: "|CatchIt s:decode'n'play *"
  46. BlackHole(TM):: "|CatchIt copy * nil:"
  47. printer::...
  48. viewpic::.....
  49.  
  50.  
  51. CatchIt is Public Domain.
  52.  
  53. © 1994 by Andreas Oesterhelt (oesi@paradis.rhein.de)
  54.